Update Go dependencies #31
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.
This PR contains the following updates:
v1.22.4->v1.23.0v3.12.2->v3.13.0v1.8.0->v1.9.0v2.8.0->v2.9.0v4.1.0->v4.1.2v0.21.1->v0.22.0v0.21.0->v0.21.1v0.23.1->v0.24.1v0.6.9->v0.7.0v2.27.1->v2.27.2v0.9.0->v0.9.1v1.1.66->v1.1.68v1.10.0->v1.11.11.24.5->1.25.1v1.1.0->v1.2.1v1.36.0->v1.38.0v0.12.2->v0.14.0v0.12.2->v0.14.0v1.36.0->v1.38.0v1.36.0->v1.38.0v1.36.0->v1.38.0v0.12.2->v0.14.0v1.36.0->v1.38.0v1.36.0->v1.38.0v0.12.2->v0.14.0v1.36.0->v1.38.0v1.7.0->v1.8.0v0.39.0->v0.42.0v0.25.0->v0.28.0v0.41.0->v0.44.0v0.30.0->v0.31.0v0.15.0->v0.17.0v0.33.0->v0.36.0v0.32.0->v0.35.0v0.26.0->v0.29.0v0.12.0->v0.13.0v0.34.0->v0.37.0513f239->9702482513f239->9702482v1.73.0->v1.75.1v1.36.6->v1.36.9v4.12.0->v4.13.0v0.33.2->v0.34.1v0.33.2->v0.34.1v0.33.2->v0.34.1v0.33.2->v0.34.18b98d1e->589584f4c0f3b2->0af2bdacfa47c3->2d32026v4.6.0->v4.7.0v1.4.0->v1.6.0Release Notes
aws/smithy-go (github.com/aws/smithy-go)
v1.23.0Compare Source
General Highlights
Module Highlights
github.com/aws/smithy-go: v1.23.0v1.22.5Compare Source
General Highlights
Module Highlights
github.com/aws/smithy-go: v1.22.5emicklei/go-restful (github.com/emicklei/go-restful/v3)
v3.13.0Compare Source
fsnotify/fsnotify (github.com/fsnotify/fsnotify)
v1.9.0Compare Source
Changes and fixes
all: make BufferedWatcher buffered again (#657)
inotify: fix race when adding/removing watches while a watched path is being deleted (#678, #686)
inotify: don't send empty event if a watched path is unmounted (#655)
inotify: don't register duplicate watches when watching both a symlink and its target; previously that would get "half-added" and removing the second would panic (#679)
kqueue: fix watching relative symlinks (#681)
kqueue: correctly mark pre-existing entries when watching a link to a dir on kqueue (#682)
illumos: don't send error if changed file is deleted while processing the event (#678)
fxamacker/cbor (github.com/fxamacker/cbor/v2)
v2.9.0Compare Source
v2.9.0 adds new features, refactors tests, and improves docs. New features improve interoperability/transcoding between CBOR & JSON.
v2.9.0 passed fuzz tests and is production quality. However, the new
TextUnmarshalerfeature will continue being fuzz tested a bit longer due to recent changes. The recent changes are limited and don't affect other parts of the codec that passed ~2 billion execs fuzzing.What's Changed
Docs
CI
🔎 Details
Special Thanks
Many thanks to @benluddy for adding these new features! 🎉
New Contributors
Full Changelog: fxamacker/cbor@v2.8.0...v2.9.0
go-jose/go-jose (github.com/go-jose/go-jose/v4)
v4.1.2Compare Source
What's Changed
go-jose v4.1.2 improves some documentation, errors, and removes the only 3rd-party dependency.
New Contributors
Full Changelog: go-jose/go-jose@v4.1.1...v4.1.2
v4.1.1Compare Source
What's Changed
New Contributors
Full Changelog: go-jose/go-jose@v4.1.0...v4.1.1
go-openapi/jsonpointer (github.com/go-openapi/jsonpointer)
v0.22.0Compare Source
v0.21.2Compare Source
go-openapi/jsonreference (github.com/go-openapi/jsonreference)
v0.21.1Compare Source
go-openapi/swag (github.com/go-openapi/swag)
v0.24.1Compare Source
v0.24.0Compare Source
google/gnostic-models (github.com/google/gnostic-models)
v0.7.0Compare Source
grpc-ecosystem/grpc-gateway (github.com/grpc-ecosystem/grpc-gateway/v2)
v2.27.2Compare Source
What's Changed
New Contributors
Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.2
mailru/easyjson (github.com/mailru/easyjson)
v0.9.1Compare Source
What's Changed
New Contributors
Full Changelog: mailru/easyjson@v0.9.0...v0.9.1
miekg/dns (github.com/miekg/dns)
v1.1.68Compare Source
v1.1.67Compare Source
stretchr/testify (github.com/stretchr/testify)
v1.11.1Compare Source
This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (
String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.What's Changed
Full Changelog: stretchr/testify@v1.11.0...v1.11.1
v1.11.0Compare Source
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
Fixes
Documentation, Build & CI
New Contributors
Full Changelog: stretchr/testify@v1.10.0...v1.11.0
golang/go (go)
v1.25.1v1.25.0v1.24.7v1.24.6open-telemetry/opentelemetry-go-instrumentation (go.opentelemetry.io/auto/sdk)
v1.2.1Fixed
uint32bounding on 32 bit architectures in thego.opentelemetry.io/auto/sdkmodule. (#2810)v1.2.0Added
golang.org/x/net0.42.0. (#2503)google.golang.org/grpc1.74.2. (#2546)google.golang.org/grpc1.76.0-dev. (#2596)WithResourceDetectorfunction is added togo.opentelemetry.io/auto/pipeline/otelsdk.WithEnvfunction is updated to parse theOTEL_RESOURCE_DETECTORenvironment variable.Values are expected to be a comma-separated list of resource detector IDs registered with the
autodetectpackage.1.23.12. (#2603)1.24.6. (#2603)golang.org/x/net0.43.0. (#2615)1.25.0. (#2651)google.golang.org/grpc1.75.0. (#2686)github.com/segmentio/kafka-go0.4.49. (#2699)go.opentelemetry.io/otelv1.38.0. (#2726)1.24.7. (#2747)1.25.1. (#2747)golang.org/x/net0.44.0. (#2773)google.golang.org/grpc1.72.3. (#2787)google.golang.org/grpc1.73.1. (#2787)google.golang.org/grpc1.74.3. (#2787)google.golang.org/grpc1.75.1. (#2787)Changed
go.opentelemetry.io/autosemconv tov1.37.0. ([#2763](https://redirect.github.com/open-telemetry/opentelemetry-go-instrumentatConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.